home *** CD-ROM | disk | FTP | other *** search
/ Digital Photo Album: Houko Kuwashima / Digital Photo Album: Houko Kuwashima.iso / cont.dxr / 00011.ls < prev    next >
Encoding:
Text File  |  1998-10-08  |  394 b   |  24 lines

  1. on idle
  2.   repeat with ch = 10 to 15
  3.     if rollOver(ch) then
  4.       showsprite(ch)
  5.       exit
  6.     end if
  7.   end repeat
  8.   hidesprite()
  9. end
  10.  
  11. on showsprite ch
  12.   puppetSprite(ch + 10, 1)
  13.   set the visible of sprite (ch + 10) to 1
  14.   updateStage()
  15. end
  16.  
  17. on hidesprite
  18.   repeat with ch = 10 to 15
  19.     set the visible of sprite (ch + 10) to 0
  20.     puppetSprite(ch + 10, 0)
  21.   end repeat
  22.   updateStage()
  23. end
  24.